body{
    background-color:#FFDAB9;
    font-family: 'Times New Roman', Times, serif;
}
.container {
    position: relative;
    max-width: 500px; 
    padding: 20px;
    margin: 100px auto; 
    background-color:whitesmoke;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    border: 2px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px black;
}

h1 {
    font-size: 40px; /* Slightly reduced for better fitting */
    font-weight: bolder;
    margin-bottom: 20px;
    position: relative;
}

.dob, .today {
    font-size: 25px;
    font-weight: bold;
    display: block;
    margin: 15px auto; /* Centers elements properly */
}

input {
    font-size: 18px;
    padding: 10px;
    width: 80%;
    margin-top: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
}

button {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
    margin-top: 20px;
    border: 2px solid black;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    position: relative;
}

button:hover {
    background-color: #0056b3;
}
p{
   font-size: 25px;
}
/* Responsive Design for Laptops */
@media screen and (max-width: 1440px) {
    .container {
        max-width: 50%;
        padding: 30px;
    }

    h1 {
        font-size: 35px;
    }

    .dob, .today {
        font-size: 22px;
    }

    input {
        font-size: 16px;
    }

    button {
        font-size: 18px;
    }
}

/* Responsive Design for Tablets */
@media screen and (max-width: 1024px) {
    .container {
        max-width: 50%;
    }

    h1 {
        font-size: 30px;
    }
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    .container {
        max-width: 70%;
    }

    h1 {
        font-size: 28px;
    }

    .dob, .today {
        font-size: 20px;
    }

    input, button {
        font-size: 16px;
    }
}